home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3.2
/
Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO
/
packet
/
n17jsrc
/
tcptimer.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-02-06
|
1KB
|
58 lines
/* TCP timeout routines
* Copyright 1991 Phil Karn, KA9Q
*/
#include <stdio.h>
#include "global.h"
#include "mbuf.h"
#include "timer.h"
#include "netuser.h"
#include "internet.h"
#include "tcp.h"
int tcptimertype = 0; /* default backoff to binary exponential */
/* Timer timeout */
void
tcp_timeout(p)
void *p;
{
register struct tcb *tcb;
tcb = p;
if(tcb == NULLTCB)
return;
/* Make sure the timer has stopped (we might have been kicked) */
stop_timer(&tcb->timer);
switch(tcb->state){
case TCP_TIME_WAIT: /* 2MSL timer has expired */
close_self(tcb,NORMAL);
break;
default: /* Retransmission timer has expired */
tcb->flags.retran = 1; /* Indicate > 1 transmission */
tcb->backoff++;
tcb->snd.ptr = tcb->snd.una;
/* Reduce slowstart threshold to half current window */
tcb->ssthresh = tcb->cwind / 2;
tcb->ssthresh = max(tcb->ssthresh,tcb->mss);
/* Shrink congestion window to 1 packet */
tcb->cwind = tcb->mss;
tcp_output(tcb);
}
}
/* Backoff function - the subject of much research */
int32
backoff(n)
int n;
{
if(n > 31)
n = 31; /* Prevent truncation to zero */
if(tcptimertype)
return (int32) ++n; /* Linear backoff for sensible values! */
else
return 1L << n; /* Binary exponential back off */
}